go/ast.CallExpr.Rparen (field)
10 uses
go/ast (current package)
ast.go#L380: Rparen token.Pos // position of ")"
ast.go#L533: func (x *CallExpr) End() token.Pos { return x.Rparen + 1 }
go/parser
parser.go#L1537: return &ast.CallExpr{Fun: fun, Lparen: lparen, Args: list, Ellipsis: ellipsis, Rparen: rparen}
go/printer
nodes.go#L956: if x.Rparen.IsValid() && p.lineFor(x.Ellipsis) < p.lineFor(x.Rparen) {
nodes.go#L960: p.exprList(x.Lparen, x.Args, depth, commaTerm, x.Rparen, false)
nodes.go#L962: p.print(x.Rparen, token.RPAREN)
go/types
builtins.go#L72: check.invalidOp(inNode(call, call.Rparen), _WrongArgCount, "%s arguments for %s (expected %d, found %d)", msg, call, bin.nargs, nargs)
call.go#L132: check.errorf(inNode(call, call.Rparen), _WrongArgCount, "missing argument in conversion to %s", T)
call.go#L364: at = atPos(call.Rparen) // report at closing )